home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / SUPERPD.PAK / TABSTOP.H < prev   
C/C++ Source or Header  |  1997-05-06  |  1KB  |  40 lines

  1. // tabstop.h : tab setting dialog
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1995 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13.  
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CSetTabStops dialog
  16.  
  17. class CSetTabStops : public CDialog
  18. {
  19.     DECLARE_DYNAMIC(CSetTabStops)
  20. // Construction
  21. public:
  22.     CSetTabStops(CWnd* pParent = NULL); // standard constructor
  23.  
  24. // Dialog Data
  25.     //{{AFX_DATA(CSetTabStops)
  26.     enum { IDD = IDD_SET_TABSTOPS };
  27.     UINT    m_nTabStops;
  28.     //}}AFX_DATA
  29.  
  30. // Implementation
  31. protected:
  32.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  33.  
  34.     //{{AFX_MSG(CSetTabStops)
  35.     //}}AFX_MSG
  36.     DECLARE_MESSAGE_MAP()
  37. };
  38.  
  39. /////////////////////////////////////////////////////////////////////////////
  40.